home *** CD-ROM | disk | FTP | other *** search
/ Gamers Delight 2 / Gamers Delight 2.iso / Aminet / game / wb / PopLife.lha / PopLife / makefile < prev    next >
Makefile  |  1987-11-15  |  476b  |  27 lines

  1. #:ts=8
  2. #
  3. #    Makefile for PopLife
  4. #
  5.  
  6. PopLife:    poplife.o simplestartup.o
  7.         ln -m -o PopLife poplife.o simplestartup.o -lc
  8.  
  9. debug:        poplife.o simplestartup.o
  10.         ln -w -o PopLife poplife.o simplestartup.o -lc
  11.  
  12. poplife.o:    poplife.c dmp
  13.         cc +idmp poplife.c
  14.  
  15. simplestartup.o:    simplestartup.c dmp
  16.         cc +idmp simplestartup.c
  17.  
  18. crash:        crash.o
  19.         ln -w crash.o simplestartup.o -lc
  20.  
  21. crash.o:    crash.c
  22.         cc +idmp crash.c
  23.  
  24. dmp:        structures.h
  25.         cc -a +hdmp structures.h
  26.         delete structures.asm
  27.